diff options
| author | Kimdonghan <dh32110@gmail.com> | 2025-12-03 19:45:10 +0900 |
|---|---|---|
| committer | Kimdonghan <dh32110@gmail.com> | 2025-12-03 19:45:10 +0900 |
| commit | d4c70998cbe7132b05e6d8b1e79f48030feeea81 (patch) | |
| tree | 510e396a40344644526b7470ac70b3ab324616ae /app/[lng]/partners/(partners)/techsales/rfq-offshore-hull | |
| parent | a8007e03996530efd3818c5b70a24e426244ec5f (diff) | |
(김동한) partner 메뉴명과 화면 내 h태그 일치 작업
Diffstat (limited to 'app/[lng]/partners/(partners)/techsales/rfq-offshore-hull')
| -rw-r--r-- | app/[lng]/partners/(partners)/techsales/rfq-offshore-hull/page.tsx | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/app/[lng]/partners/(partners)/techsales/rfq-offshore-hull/page.tsx b/app/[lng]/partners/(partners)/techsales/rfq-offshore-hull/page.tsx index ee31c95b..1254e992 100644 --- a/app/[lng]/partners/(partners)/techsales/rfq-offshore-hull/page.tsx +++ b/app/[lng]/partners/(partners)/techsales/rfq-offshore-hull/page.tsx @@ -8,12 +8,16 @@ import { LogIn } from "lucide-react"; import { Shell } from "@/components/shell"; import { VendorQuotationsTable } from "@/lib/techsales-rfq/vendor-response/table/vendor-quotations-table"; import { InformationButton } from "@/components/information/information-button" +import { useTranslation } from "@/i18n"; + export const metadata: Metadata = { title: "기술영업 해양HULL RFQ 관리", description: "기술영업 해양HULL RFQ를 관리합니다.", }; -export default async function VendorQuotationsHullPage() { +export default async function VendorQuotationsHullPage(props: { params: { lng: string } }) { + const { lng } = props.params + const { t } = await useTranslation(lng, 'menu') // 세션 확인 const session = await getServerSession(authOptions); @@ -62,11 +66,11 @@ export default async function VendorQuotationsHullPage() { <div className="flex-shrink-0 flex flex-col gap-4 md:flex-row md:items-center md:justify-between"> <div> <div className="flex items-center gap-2"> - <h1 className="text-2xl font-bold tracking-tight">기술영업 해양HULL RFQ</h1> + <h1 className="text-2xl font-bold tracking-tight">{t('menu.vendor.sales.offshore_hull_rfq')}</h1> <InformationButton pagePath="partners/techsales/rfq-offshore-hull" /> </div> <p className="text-muted-foreground"> - 할당받은 해양HULL RFQ에 대한 견적서를 작성하고 관리합니다. + {t('menu.vendor.sales.offshore_hull_rfq_desc')} </p> </div> </div> |
